fix(cli, api): replace stale Re:infer branding with UiPath IXP in user-facing strings - #454
Merged
Merged
Conversation
…r-facing strings The `re` CLI still opened with `reinfer-cli 0.42.0` / "re is the command line interface to reinfer clusters", and every `re config` subcommand described "the reinfer config file" -- while the README had already moved to UiPath IXP. Rebrands the root and `config` help text, the seven `re config` help strings, both crate descriptions (the crates.io/docs.rs blurbs, and the Debian Description: via cargo deb), api/README.md, the RetryConfig rustdoc and the README logo's alt text. `re --help` and `re --version` now print `re 0.42.0` rather than `reinfer-cli 0.42.0`, via `name = "re"` on the root structopt -- the crate is still reinfer-cli and the binary was always `re`. Leaves the compatibility surfaces alone: the reinfer-cli/reinfer-client crate names, ~/.config/reinfer, REINFER_CLI_NUM_THREADS, reinfer.dev endpoint handling, the reinfer_ URL path segment (including the parse-from-url error text that quotes it), and the internal ReinferConfig symbols. --reinfer-tenant-id keeps its name and its help text, since it labels an ID namespace (TenantId::Reinfer vs TenantId::UiPath) and is mutually exclusive with --uipath-tenant-id. RE-12805 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
reCLI still opened withreinfer-cli 0.42.0/ "re is the command line interface to reinfer clusters", and everyre configsubcommand described "the reinfer config file" — while the README had already moved to UiPath IXP. This sweeps the user-facing strings over.re --help/re --versionnow printre 0.42.0(name = "re"on the rootstructopt— the crate is stillreinfer-cli, and the binary was alwaysre)configabout, and the sevenre confighelp stringsdescriptions — the crates.io/docs.rs blurbs, and the DebianDescription:viacargo debapi/README.md, theRetryConfigrustdoc, and the README logo'salttextDeliberately unchanged as compatibility surfaces rather than branding: the
reinfer-cli/reinfer-clientcrate names,~/.config/reinfer,REINFER_CLI_NUM_THREADS,reinfer.devendpoint handling, thereinfer_URL path segment (including theparse-from-urlerror text that quotes it), and the internalReinferConfigsymbols.--reinfer-tenant-idonre create quotakeeps its name and its help text — it labels an ID namespace (TenantId::ReinfervsTenantId::UiPath) and is mutually exclusive with--uipath-tenant-id, so rebranding just the help would make the two flags read as the same thing.Left for a separate call:
authors = ["reinfer Ltd. <eng@reinfer.io>"]in both manifests (an attribution record, and the.debMaintainer:), and the hero image — still the Re:infer GitHub org avatar, only itsalttext changed here.Verified by walking all 71 help pages and the generated zsh/bash completions: the only
reinferleft is the four exclusions above.scripts/check-versions,cargo fmt --checkandcargo clippy --all-targets -D warningspass. No runtime behaviour changes and nothing asserts on help text, so no new tests —cargo testneeds a live cluster and is left to CI.RE-12805